home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / wndwc20.zip / EX11.C < prev    next >
Text File  |  1989-03-06  |  1KB  |  27 lines

  1. /*     EXAMPLE 11:  Virtual window sizing
  2.      ----------------------------------------------------------------------*/
  3.      #include <conio.h>
  4.      #include <dos.h>
  5.      #include "wndwc20.h"
  6.  
  7.      void main()
  8.      {
  9.          qinit();
  10.          initwindow( LIGHTGRAY_BG, 1, 0 );
  11.          setwindowmodes( VIRTUALMODE );
  12.          setvirtualsize( 20, 100 );              /* 20 rows by 100 columns */
  13.          makewindow( 5, 20, 15, 40, LIGHTCYAN+BLUE_BG, WHITE+BLUE_BG,
  14.                      SINGLE_BORDER, WINDOW1 );
  15.          writetovirtual( WINDOW1 );     /* Now write to the virtual screen */
  16.          qfill(1,1,crt_rows,crt_cols,SAMEATTR,'?');  /* Fill screen w/data */
  17.          titlewindow( TOP, LEFT, YELLOW+BLUE_BG, " Virtual Window " );
  18.          wwrite( 4, 8, " >" );                  /* Let's get our bearings. */
  19.          qwriteeos( tws.wndwattr+BLINK, "+" );
  20.          qwriteeos( SAMEATTR, "<- Row 4, Column 10 " );
  21.          vupdatewindow();         /* Update the complete window on the CRT. */
  22.          delay (4000);            /* Make sure we see where the cursor is. */
  23.          removewindow();
  24.          getch();
  25.      }
  26.  
  27.